home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / mc51bugs.zip / Q32016 < prev    next >
Text File  |  1988-07-21  |  748b  |  33 lines

  1. Q32016 Internal Compiler Error: code.c 1.46, Line 393
  2. C Compiler
  3. 5.10
  4. MS-DOS
  5.  
  6. Summary:
  7.    The following program will generate an internal compiler error when
  8. compiled in the large (/AL) or compact (/AC) memory model:
  9.  
  10. main()
  11. {
  12.   char *one;
  13.   char *two[7];
  14.   register int i, j;
  15.   *two[i]++ = one[j++];
  16. }
  17.  
  18.    The error generates the following message:
  19.  
  20.    fatal error C1001: Internal Compiler Error
  21.     (compiler file '@(#)code.c:1.46', line 393)
  22.  
  23. More Information:
  24.    You can work around the problem by eliminating the register
  25. declaration on the variables i and j.
  26.    Microsoft is researching this problem and will post new information
  27. as it becomes available.
  28.  
  29.  
  30.  
  31. Keywords:  buglist5.10 qfbv
  32. Updated  88/07/21 03:19
  33.